Specifies the options to access a JDBC database.
JDBC データベースにアクセスするためのオプションを指定します。
You can use a JDBC driver class to connect to a JDBC database from Office. The driver class is provided by the database manufacturer. Two examples of JDBC databases are Oracle and MySQL.
JDBC ドライバクラスを使用して、Office から JDBC データベースに接続できます。ドライバクラスは、データベースの製造元から提供されます。JDBC データベースの例として、Oracle および MySQL があります。
![]() | The driver classes must be added to Office in Office - PreferencesTools - Options - Office - Java.
[PO-fuzzy@shared\explorer\database.po] ※※※未訳※※※ |
You can use a JDBC driver to access an Oracle database from Solaris or Linux. To access the database from Windows, you need an ODBC driver.
JDBC ドライバを使用すると、Solaris または Linux から Oracle データベースにアクセスできます。Windows から Oracle データベースにアクセスするには、ODBC ドライバが必要です。
On UNIX, ensure that the Oracle database client is installed with JDBC support. The JDBC driver class for the Solaris Oracle client version 8.x is located in the <Oracle client>/product/jdbc/lib/classes111.zip directory. You can also download the latest version from the Oracle web site:
UNIX では、JDBC サポートとともに Oracle データベースクライアントがインストールされていることを確認します。 Solaris Oracle クライアントバージョン 8.x 用の JDBC ドライバクラスは、<Oracle client>/product/jdbc/lib/classes111.zip directory ディレクトリにあります。 次の Oracle の Web サイトから、最新バージョンのドライバをダウンロードすることもできます。
http://otn.oracle.com/tech/java/sqlj_jdbc/content.html
http://otn.oracle.com/tech/java/sqlj_jdbc/content.html
In the Data source URL box, enter the location of the Oracle database server. The syntax of the URL depends on the database type. See the documentation that came with the JDBC driver for more information.
データソースの URL ボックスで、Oracle データベースサーバーの場所を入力します。URL の構文は、データベースの種類に依存します。詳細については、JDBC ドライバに付属するドキュメントを参照してください。
For an Oracle database, the syntax of the URL is:
Oracle データベースの場合、URL の構文は次のようになります。
oracle:thin:@hostname:port:database_name
oracle:thin:@hostname:port:database_name
hostname is the name of the machine that runs the Oracle database. You can also replace hostname with the IP address of the server.
hostname は、Oracle データベースを実行するマシンの名前です。hostname は、サーバーの IP アドレスで置き換えることもできます。
port is the port where the Oracle database listens. Ask your database administrator for the correct port address.
port は、Oracle データベースが待機するポートです。正しいポートアドレスについては、データベース管理者に尋ねてください。
database_name is the name of the Oracle database. Ask your database administrator for the correct name.
database_name は Oracle データベースの名前です。正しい名前をデータベース管理者に尋ねてください。
The driver for the MySQL database is available on the MySQL web site.
MySQL データベース用のドライバは、MySQL Web サイトで入手できます。
The syntax for a MySQL database is:
MySQL データベースの構文は次のとおりです。
mysql://hostname:port/database_name
mysql://hostname:port/database_name
hostname is the name of the machine that runs the MySQL database. You can also replace hostname with the IP address of the server.
hostname は、MySQL データベースを実行するマシンの名前です。hostname は、サーバーの IP アドレスで置き換えることもできます。
port is the default port for MySQL databases, namely 3306.
port は、MySQL データベースのデフォルトポートです。通常、3306 です。
database_name is the name of the database.
database_name はデータベースの名前です。
Enter the URL for the database. For example, for the MySQL JDBC driver, enter "jdbc:mysql://<Servername>/<name of the database>". For more information on the JDBC driver, consult the documentation that came with the driver.
データベースのURL を入力します。たとえば、MySQL JDBC ドライバの場合、「jdbc:mysql://<Servername>/<name of the database>」を入力します。JDBC ドライバについての詳細は、ドライバに付属のマニュアルを参照してください。
Enter the name of the JDBC driver.
JDBC ドライバの名前を入力します。
![]() | Before you can use a JDBC driver, you need to add its class path. Choose Office - PreferencesTools - Options - Office- Java, and click the Class Path button. After you add the path information, restart Office.
[PO-fuzzy@shared\explorer\database.po] ※※※未訳※※※ |
Tests the connection with the current settings.
現在の設定で接続をテストします。